home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / langs / glisp.zoo / TT1.GL < prev   
Encoding:
Text File  |  1990-08-04  |  175 b   |  13 lines

  1. "binding test - should print
  2. 8 3 0 27 13"
  3. (setq a 5 b 8)
  4.  
  5. (let ((a b)(b a)) (- a b))
  6.  
  7. (let* ((a b)(b a)) (- a b))
  8.  
  9. (let (a b)
  10.   (setq a 12 b 15) (+ a b))
  11.  
  12. (+ a b)
  13.